{% extends 'core/_base.html' %} {% block title %} Return list {% endblock title %} {% load humanize %} {% block body %}
Return list
{% if return_list %}
{% for items in return_list %} {% endfor %}
SL. Customer Product Grand Total Shipping Cost Vat/Tax Other Cost Discount Date Action
{{ forloop.counter }} {{ items.customer }} {{ items.product.name }} ${{ items.grand_total }} ${{ items.shipping_cost }} ${{ items.vat_tax }} ${{ items.other_cost }} ${{ items.discount }} {{ items.created_at }} {% comment %} {% endcomment %}
{% if return_list.has_previous %} Previous {% endif %}
{% if return_list.has_next %} Next {% endif %}

Showing {{ return_list.number }}/{{ return_list.paginator.num_pages }}

{% else %} {% include 'core/info/message.html' %} {% endif %}
{% endblock body %}